export interface StickySubHeaderProps extends React.PropsWithChildren<{}> { title: string; /** * largeTitle will make the title use the `xl` variant; */ largeTitle?: boolean; separatorComponent?: React.ReactNode; subTitle?: string; Component?: React.ReactNode; } export declare const STICKY_BAR_HEIGHT = 42; export declare const DEFAULT_SEPARATOR_COMPONENT: import("react/jsx-runtime").JSX.Element; export declare const BOTTOM_TABS_HEIGHT = 65; export declare const StickySubHeader: React.FC;