UNPKG

@actinc/dls

Version:

Design Language System (DLS) for ACT & Encoura front-end projects.

26 lines 947 B
/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { ButtonProps, DialogContentProps, DialogTitleProps } from '@mui/material'; import { FC, ReactNode } from 'react'; import { DialogProps } from '../Dialog'; export interface DialogContinueSessionProps { confirmationButtonProps?: ButtonProps; confirmationText?: ReactNode; cancellationButtonProps?: ButtonProps; cancellationText?: ReactNode; content?: ReactNode | null; contentProps?: DialogContentProps; dialogProps?: Omit<DialogProps, 'open'>; title?: ReactNode; titleProps?: DialogTitleProps; expiresAt: Date; onContinue: () => void; onExpire: () => void; } export declare const DialogContinueSession: FC<DialogContinueSessionProps>; export default DialogContinueSession; //# sourceMappingURL=index.d.ts.map