@ozen-ui/kit
Version:
React component library
10 lines (9 loc) • 443 B
TypeScript
import type { ListCardItemSizeVariant } from '../ListCardItem';
export type DataListCardContextValue = {
size: ListCardItemSizeVariant;
loading: boolean;
showNoOptions: boolean;
};
export declare const DataListCardContextDefaultValue: DataListCardContextValue;
export declare const DataListCardContext: import("react").Context<DataListCardContextValue>;
export declare const useDataListCardContext: () => DataListCardContextValue;