///
export declare const StyledSwitch: import("styled-components").StyledComponent<"div", {
color: {
primary: string;
secondary: string;
warningYellow: string;
background: string;
backgroundVariant: string;
grid: string;
primaryContrast: string;
gray: string;
grayAccent: string;
};
font: {
color: string;
family: string;
size: number;
};
interactive: {
normal: string;
hovered: string;
};
}, {}, never>;
export type SwitchItemProps = {
selected?: boolean;
};
export declare const StyledSwitchItem: import("styled-components").StyledComponent & Partial> & import("react").RefAttributes>, {
color: {
primary: string;
secondary: string;
warningYellow: string;
background: string;
backgroundVariant: string;
grid: string;
primaryContrast: string;
gray: string;
grayAccent: string;
};
font: {
color: string;
family: string;
size: number;
};
interactive: {
normal: string;
hovered: string;
};
}, SwitchItemProps, never>;