import type { WithNormalizedProps } from "../../global";
static interface CCDInput extends Omit<Marko.HTML.Div, `on${string}`> {
    max?: string;
    min?: string;
    "charger-icon"?: "included" | "not-included";
    units?: string;
    "secondary-type"?: string;
    "secondary-text"?: string;
    "a11y-units"?: string;
    "a11y-text"?: string;
}
export interface Input extends WithNormalizedProps<CCDInput> {
}
