export type Icon = (props?: IconProps) => HTMLElement;
export interface IconProps {
fill?: string;
}
export declare const TEXT_ICONS: {
fontFamily: ({ fill }?: IconProps) => HTMLElement;
fontSize: ({ fill }?: IconProps) => HTMLElement;
align: ({ fill }?: IconProps) => HTMLElement;
alignTop: ({ fill }?: IconProps) => HTMLElement;
alignRight: ({ fill }?: IconProps) => HTMLElement;
alignBottom: ({ fill }?: IconProps) => HTMLElement;
alignLeft: ({ fill }?: IconProps) => HTMLElement;
alignCenter: ({ fill }?: IconProps) => HTMLElement;
alignMiddle: ({ fill }?: IconProps) => HTMLElement;
};
export declare const RESET_ICON: ({ fill }?: IconProps) => HTMLElement;
export declare const ELEMENT_ICONS: {
align: ({ fill }?: IconProps) => HTMLElement;
alignTop: ({ fill }?: IconProps) => HTMLElement;
alignRight: ({ fill }?: IconProps) => HTMLElement;
alignBottom: ({ fill }?: IconProps) => HTMLElement;
alignLeft: ({ fill }?: IconProps) => HTMLElement;
alignH: ({ fill }?: IconProps) => HTMLElement;
alignV: ({ fill }?: IconProps) => HTMLElement;
distributeH: ({ fill }?: IconProps) => HTMLElement;
distributeV: ({ fill }?: IconProps) => HTMLElement;
};