//@ts-ignore export interface PlatformProps { /** * Props only for web */ _web?: Partial; /** * Props only for ios */ _ios?: Partial; /** * Props only for android */ _android?: Partial; /** * Props only for light mode */ _light?: Partial; /** * Props only for dark mode */ _dark?: Partial; /** * Props with highest specificity */ _important?: Partial; }