import { IconButtonProps } from '../../action/IconButton'; import { TagProps } from '../../content/Tag'; export declare const headerVariants: (props?: ({ variant?: "default" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type HeaderTagsProps = { tags?: React.ReactElement[]; }; export type HeaderActionProps = { actionElement?: React.ReactElement; }; export type HeaderSearchProps = { onSearch?: (value: string) => void; placeholder?: string; isDisabed?: boolean; onCancelSearchPress?: () => void; searchDelay?: number; }; export type HeaderProps = { 'data-testid'?: string; onBackPress?: () => void; searchConfig?: HeaderSearchProps; } & HeaderTagsProps & HeaderActionProps; //# sourceMappingURL=types.d.ts.map