import { ComponentDefaultProps } from '@justeattakeaway/pie-webc-core'; export declare const variants: readonly ["default", "scrim"]; type AriaProps = { label?: string; }; export interface BreadcrumbProps { /** * The ARIA labels used for various parts of the breadcrumb. */ aria?: AriaProps; /** * Optional variant for styling the breadcrumb component. */ variant?: typeof variants[number]; /** * Optional property for rendering a compact variation of the breadcrumb. */ isCompact?: boolean; /** * Optional property to hide the current page of the breadcrumb (last item). */ hideCurrentPage?: boolean; } export type DefaultProps = ComponentDefaultProps>; export declare const defaultProps: DefaultProps; export {}; //# sourceMappingURL=defs.d.ts.map