monday-ui-react-core
Version:
Official monday.com UI resources for application development in React.js
23 lines (22 loc) • 874 B
TypeScript
import React from "react";
import { DialogSize, DialogType } from "./DialogContentContainerConstants";
import { VibeComponentProps, VibeComponent } from "../../types";
export interface DialogContentContainerProps extends VibeComponentProps {
children?: React.ReactNode;
ariaLabelledby?: string;
ariaDescribedby?: string;
type?: DialogType;
size?: DialogSize;
style?: React.CSSProperties;
}
declare const _default: ((VibeComponent<DialogContentContainerProps & React.RefAttributes<HTMLElement>, HTMLElement> & Partial<{
types: typeof DialogType;
sizes: typeof DialogSize;
}>) | (React.FC<DialogContentContainerProps & React.RefAttributes<HTMLElement>> & Partial<{
types: typeof DialogType;
sizes: typeof DialogSize;
}>)) & {
types: typeof DialogType;
sizes: typeof DialogSize;
};
export default _default;