carbon-react
Version:
A library of reusable React components for easily building user interfaces.
12 lines (11 loc) • 422 B
TypeScript
type TransitionProps = {
transitionName: string;
transitionTime: number;
};
declare const StyledModalBackground: import("styled-components").StyledComponent<"div", any, TransitionProps, never>;
declare const StyledModal: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & TransitionProps & {
topModalOverride?: boolean;
}, "theme">;
export { StyledModal, StyledModalBackground };