import { SystemStyleObject } from "@styled-system/css"; declare type SystemStyleObjects = { [key: string]: SystemStyleObject; }; declare type SystemStyleProp = string | string[] | number[] | (string & (string | number | symbol | null)[]) | (string & { [x: string]: string | number | symbol | undefined; [x: number]: string | number | symbol | undefined; }) | undefined; declare const container: { center: SystemStyleObject; centerX: SystemStyleObject; centerY: SystemStyleObject; }; declare const button: { state: SystemStyleObjects; text: SystemStyleObject; }; declare const action: { state: SystemStyleObjects; text: SystemStyleObject; }; declare const indicator: { state: SystemStyleObjects; }; declare const toggleSwitch: { states: SystemStyleObjects; }; declare const textInput: { state: SystemStyleObjects; text: SystemStyleObject; }; export { container, button, action, textInput, toggleSwitch, indicator, SystemStyleProp, };