export type RefineBreadcrumbProps<TBreadcrumbProps extends {} = Record<keyof any, unknown>> = {
    /**
     * Passes properties for <Breadcrumb>
     */
    breadcrumbProps?: TBreadcrumbProps;
    /**
     * Shows the home button if you have a resource with `list` action defined as `/` route.
     */
    showHome?: boolean;
    /**
     * Allows to hide resource icons
     */
    hideIcons?: boolean;
    /**
     * Additional params to be used in the route generation process.
     */
    meta?: Record<string, string | number>;
    /**
     * Minimum number of breadcrumb items required for rendering.
     * The component will render only if the number of items is greater than or equal to this value.
     */
    minItems?: number;
};
//# sourceMappingURL=breadcrumb.d.ts.map