export type ContainerProps = { children: React.ReactNode; width?: 'xs' | 'small' | 'medium' | 'large' | 'full'; as?: 'div' | 'section' | 'main'; id?: string; style?: any; ariaLabel?: string; ariaDescribedBy?: string; onFocus?: (event: React.FocusEvent) => void; onBlur?: (event: React.FocusEvent) => void; onKeyDown?: (event: React.KeyboardEvent) => void; };