import type { StrictXCSSProp } from '@atlaskit/css'; import type { CommonSlotProps } from './types'; /** * The banner layout area. It will always be displayed at the top of the screen. * * Should be used to render a `Banner` component from `@atlaskit/banner`. */ export declare function Banner({ children, xcss, height, skipLinkLabel, testId, id: providedId, }: CommonSlotProps & { /** * The content of the layout area. * Should include a Banner component from `@atlaskit/banner`. */ children: React.ReactNode; /** * Bounded style overrides. */ xcss?: StrictXCSSProp<'backgroundColor', never>; /** * The height of the layout area. * * Defaults to 48px. */ height?: number; }): JSX.Element;