import React from 'react'; import { FloatingElementProps } from '../base-floating-element'; import { MQ } from '../utils'; import { LogicalProps } from '../utils/logical-properties'; export type PopoverProps = Omit & { children: React.ReactNode; content: React.ReactNode; closePosition?: 'left' | 'right' | 'none'; header?: React.ReactNode; handleCloseButtonClick?: () => void; enableDismiss?: boolean; overrides?: FloatingElementProps['overrides'] & { header?: { typographyPreset?: MQ; stylePreset?: MQ; } & LogicalProps; content?: { typographyPreset?: MQ; stylePreset?: MQ; } & LogicalProps; closeButton?: { stylePreset?: MQ; }; closeButtonContainer?: { stylePreset?: MQ; } & LogicalProps; }; }; //# sourceMappingURL=types.d.ts.map