import { IntrinsicStyledCoreProps } from '@smart-react-components/core/element-props/intrinsic-styled-core-props';
import { JSXElementProps, PaletteProp, ShapeProp } from '@smart-react-components/core/types';
import React from 'react';
export interface Props extends IntrinsicStyledCoreProps {
    children: JSX.Element[];
    elementProps?: JSXElementProps;
    hasWaveEffect?: boolean;
    isOutline?: boolean;
    isSoft?: boolean;
    palette?: PaletteProp;
    separator?: string;
    shape?: ShapeProp;
    waveEffectPalette?: PaletteProp;
}
declare const BreadcrumbList: React.FC<Props>;
export default BreadcrumbList;
