import type { NeoIconButtonProps } from './neo-icon-button.model.js';
import type { Color } from '../utils/colors.utils.js';
export declare const NeoCloseButtonSize: {
    readonly Small: "sm";
    readonly Medium: "md";
    readonly Large: "lg";
};
export type NeoCloseButtonSizes = (typeof NeoCloseButtonSize)[keyof typeof NeoCloseButtonSize];
export interface NeoCloseButtonProps extends NeoIconButtonProps {
    hoverColor?: Color | CSSStyleDeclaration['color'];
    size?: NeoCloseButtonSizes;
    inline?: boolean;
}
