bpms_site/.svn/pristine/35/353d9c27320b80217dd8a4040ddaca1977362cc6.svn-base
2025-11-02 16:38:49 +03:30

11 lines
333 B
Plaintext

import * as React from 'react';
export type LeftRightDialogHeaderProps = {
children?: React.ReactNode;
className?: string;
previous: (() => void) | null;
next: (() => void) | null;
close?: () => void;
};
declare const LeftRightDialogHeader: React.FC<LeftRightDialogHeaderProps>;
export { LeftRightDialogHeader };