import { Styling } from "./Styling.js";
export type InputStyling = {
    main: string;
    icon: string;
    field: string;
    popup: string;
};
export declare class DefaultInputStyling extends Styling implements InputStyling {
    get main(): string;
    get icon(): string;
    get field(): string;
    get popup(): string;
}
