/** * @aspect/lynx-mui 类型定义 */ export interface LynxViewProps { className?: string; style?: Record; bindtap?: () => void; children?: any; } export interface LynxTextProps { className?: string; style?: Record; bindtap?: () => void; children?: any; } export interface LynxImageProps { className?: string; style?: Record; src?: string; bindtap?: () => void; } export interface LynxInputProps { className?: string; style?: Record; placeholder?: string; defaultValue?: string; bindinput?: (e: { detail: { value: string; }; }) => void; bindfocus?: () => void; bindblur?: () => void; } export interface CommonProps { className?: string; style?: Record; children?: any; bindtap?: () => void; } export type Color = 'inherit' | 'primary' | 'secondary' | 'success' | 'error' | 'info' | 'warning'; export type Size = 'small' | 'medium' | 'large'; export type ButtonVariant = 'text' | 'outlined' | 'contained'; export type TextFieldVariant = 'outlined' | 'filled' | 'standard'; export type SxProps = Record; //# sourceMappingURL=index.d.ts.map