import React from 'react'; import { IComponentBaseProps, ComponentColor } from '../types'; export type PhoneMockupProps = React.HTMLAttributes & IComponentBaseProps & { color?: Omit; innerProps?: React.HTMLAttributes; innerRef?: React.Ref; }; declare const PhoneMockup: React.ForwardRefExoticComponent & IComponentBaseProps & { color?: Omit<"neutral" | "primary" | "secondary" | "accent" | "ghost" | "info" | "success" | "warning" | "error", "ghost"> | undefined; innerProps?: React.HTMLAttributes | undefined; innerRef?: React.Ref | undefined; } & React.RefAttributes>; export default PhoneMockup;