declare const ColorKeys: string[]; type ColorKeysUnion = typeof ColorKeys[number]; interface SampleProps { /** * The background color of the sample */ backgroundColorName: ColorKeysUnion; } /** * moaui Styled Colors * * @param props * @returns null */ declare function Sample(props: SampleProps): import("react/jsx-runtime").JSX.Element; declare namespace Sample { var defaultProps: SampleProps; } export default Sample; //# sourceMappingURL=Sample.d.ts.map