carbon-react
Version:
A library of reusable React components for easily building user interfaces.
10 lines (9 loc) • 468 B
TypeScript
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 };