import { BoxProps } from '@mui/material';
import { FunctionComponent, PropsWithChildren } from 'react';
import { TypographyProps } from '../Typography/Typography.js';

interface KbdGroupProps extends PropsWithChildren {
    startText?: string;
    endText?: string;
    slotProps?: {
        root?: BoxProps;
        iconContainer?: BoxProps;
        startText?: TypographyProps;
        endText?: TypographyProps;
    };
}
declare const KbdGroup: FunctionComponent<KbdGroupProps>;

export { KbdGroup as default };
export type { KbdGroupProps };
