import React from "react";
interface IconSvgProps extends React.ComponentProps<"svg"> {
    /**
     * @default 24
     */
    size?: number;
}
export type LadleIconProps = Omit<IconSvgProps, "children">;
export declare const LadleDialogCloseIcon: React.FC<LadleIconProps>;
export declare const ExampleLadleIcon: React.FC<LadleIconProps>;
export {};
