import type { Globals } from "../../common/types";
import type { Size, Color } from "../types";
interface Props extends Globals {
    size?: Size;
    color?: Color;
    className?: string;
    customColor?: string;
    ariaHidden?: boolean;
    reverseOnRtl?: boolean;
    ariaLabel?: string;
}
declare const whiteListProps: (props: Props) => any;
export default whiteListProps;
