import { CSSObject } from '@xstyled/styled-components';
import { ThemeValues } from '../../theme';
export type ThemeBreadcrumbs = {
    item: {
        active: CSSObject;
        default: CSSObject;
        hover: CSSObject;
    };
    list: CSSObject;
    separator: CSSObject;
};
export declare const getBreadcrumbs: (theme: ThemeValues) => ThemeBreadcrumbs;
