import { PropsWithChildren } from 'react'; import { ButtonProps } from '../../ui/button'; interface DoubleButtonProps { left: PropsWithChildren; right: PropsWithChildren; } declare const DoubleButton: React.FC; export type { DoubleButtonProps }; export { DoubleButton }; //# sourceMappingURL=index.d.ts.map