UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

7 lines (6 loc) 298 B
import React from 'react'; import { ContainerStyled, ContainerStyledProps } from './styled'; export interface ContainerProps extends Omit<React.ComponentProps<typeof ContainerStyled>, keyof ContainerStyledProps> { disabled?: boolean; } export declare const Container: React.FC<ContainerProps>;