import React from 'react';
import type { ColorScheme } from '@shopify/polaris-tokens';
import './CustomProperties.scss';
export declare const DEFAULT_COLOR_SCHEME: ColorScheme;
export interface CustomPropertiesProps {
    /** Determines what color scheme is applied to child content. */
    colorScheme?: ColorScheme;
    /** The content to display. */
    children?: React.ReactNode;
    /** Class name applied to the root element. */
    className?: string;
    /** Inline styles applied to the root element. */
    style?: React.CSSProperties;
    /** Element used for the root node. */
    as?: React.ElementType;
}
export declare function CustomProperties(props: CustomPropertiesProps): JSX.Element;
//# sourceMappingURL=CustomProperties.d.ts.map