import { TagProps } from '../../content/Tag'; import { IconType } from '../../atoms/Icon/types'; import { LineClamp } from '../../content/Headline'; export declare const pageHeaderVariants: (props?: ({ variant?: "overlay" | "solid" | null | undefined; isSticky?: boolean | null | undefined; isCollapsed?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const headlineContainerVariants: (props?: ({ isCollapsed?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const headerClasses: ({ className, variant, isSticky, isCollapsed, }: { className?: string | undefined; variant?: PageHeaderProps['variant']; isSticky?: boolean | undefined; isCollapsed?: boolean | undefined; }) => string; export declare const headlineContainerClasses: ({ className, isCollapsed }: { className?: string | undefined; isCollapsed?: boolean | undefined; }) => string; export type PageHeaderProps = { 'data-testid'?: string; onBackPress?: () => void; onActionPress?: () => void; ActionIcon?: IconType; variant?: 'solid' | 'overlay'; isSticky?: boolean; title?: string; subtitle?: string; className?: string; tagsProps?: TagProps[]; /** Lines to clamp title and subtitle. Defaults to 2. */ lineClamp?: LineClamp; }; //# sourceMappingURL=types.d.ts.map