import type { TChildren, TSize, TStyle, TTextStyle, TVariant, } from '../common/types'; export interface IButtonProps { children: TChildren; innerBorderStyle?: TStyle; onPress?: () => void; size?: TSize; style?: TStyle; textStyle?: TTextStyle; variant?: TVariant; }