import React from 'react'; declare type Props = { children?: React.ReactNode; Element: React.ElementType; elementProps: ElementProps; align?: 'left' | 'right'; initiallyOpen?: boolean; contentPaddingMobile?: string; padded?: boolean; attributes?: any; }; declare const CalloutMenu: ({ children, Element, elementProps, align, initiallyOpen, contentPaddingMobile, padded, attributes }: Props) => JSX.Element; export default CalloutMenu;