import { LidoComponentProps } from '../utils/index.js'; export type { Theme } from '../theme/index.js'; export declare enum BlockVariant { flat = 0, shadow = 1 } export type BlockVariants = keyof typeof BlockVariant; export declare enum BlockColor { foreground = 0, background = 1, accent = 2 } export type BlockColors = keyof typeof BlockColor; export type BlockProps = LidoComponentProps<'div', { color?: BlockColors; variant?: BlockVariants; paddingLess?: boolean; }>; //# sourceMappingURL=types.d.ts.map