heading-input.d.ts•1.01 kB
/* eslint-disable */
import type { ConditionalValue } from '../types/index';
import type { DistributiveOmit, Pretty } from '../types/system-types';
interface HeadingInputVariant {
}
type HeadingInputVariantMap = {
[key in keyof HeadingInputVariant]: Array<HeadingInputVariant[key]>
}
export type HeadingInputVariantProps = {
[key in keyof HeadingInputVariant]?: ConditionalValue<HeadingInputVariant[key]> | undefined
}
export interface HeadingInputRecipe {
__type: HeadingInputVariantProps
(props?: HeadingInputVariantProps): string
raw: (props?: HeadingInputVariantProps) => HeadingInputVariantProps
variantMap: HeadingInputVariantMap
variantKeys: Array<keyof HeadingInputVariant>
splitVariantProps<Props extends HeadingInputVariantProps>(props: Props): [HeadingInputVariantProps, Pretty<DistributiveOmit<Props, keyof HeadingInputVariantProps>>]
getVariantProps: (props?: HeadingInputVariantProps) => HeadingInputVariantProps
}
export declare const headingInput: HeadingInputRecipe