import type { ReactNode } from 'react'; import type { StyleXStyles } from '@stylexjs/stylex'; type IStyles = StyleXStyles<{ width?: string; height?: string; display?: string; flexDirection?: string; justifyContent?: string; alignItems?: string; gap?: string; cursor?: string; backgroundColor?: string; overflow?: string; margin?: string; padding?: string; border?: string; borderWidth?: string; borderStyle?: string | null; borderColor?: string | null; borderRadius?: string | number | null; boxShadow?: string; position?: string; top?: string | number; bottom?: string | number; left?: string | number; right?: string | number; }>; export interface IPaper { children: ReactNode; style?: IStyles; tabIndex?: number; onClick?: () => void; onKeyDown?: (event: any) => void; } export {};