import { Toolbar } from './toolbar'; export interface FixedToolbarProps extends React.ComponentProps { sticky?: boolean; fullWidth?: boolean; } export declare function FixedToolbar({ sticky, fullWidth, ...props }: FixedToolbarProps): import("react/jsx-runtime").JSX.Element;