import { ListHeaderVariantProps } from '@seed-design/css/recipes/list-header'; import { PrimitiveProps } from '@seed-design/react-primitive'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface ListHeaderProps extends PrimitiveProps, React.HTMLAttributes, ListHeaderVariantProps { /** * @default "div" */ as?: "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; } export declare const ListHeader: ForwardRefExoticComponent>; //# sourceMappingURL=ListHeader.d.ts.map