import { ValidationProps } from "../../__internal__/validations"; type Width = string | number; declare const StyledContent: import("styled-components").StyledComponent<"div", any, {}, never>; interface StyledColorOptionsProps extends ValidationProps { maxWidth: Width; childWidth: Width; } declare const StyledColorOptions: import("styled-components").StyledComponent<"div", any, StyledColorOptionsProps, never>; export { StyledContent, StyledColorOptions };