interface StyleArguments {
    theme?: string;
}
interface StyleAttributes {
    'data-o3-theme'?: string;
}
declare const getStyleAttributes: (style: StyleArguments) => StyleAttributes;

export { type StyleArguments, getStyleAttributes };
