import React from 'react';
import { ActionBottomSheetUnControlledType } from './types/actionBottomSheet';
export declare const ActionBottomSheetUnControlledComponent: <V extends string | unknown>({ open, popover, closeIcon, ...props }: ActionBottomSheetUnControlledType<V>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element;
/**
 * @description
 * ActionBottomSheetUnControlled component is a controlled action bottom sheet that use a Popover component to show the content.
 * @param {React.PropsWithChildren<ActionBottomSheetUnControlledType<V>>} props
 * @returns {JSX.Element}
 */
declare const ActionBottomSheetUnControlled: <V extends string | unknown>(props: React.PropsWithChildren<ActionBottomSheetUnControlledType<V>> & {
    ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => ReturnType<typeof ActionBottomSheetUnControlledComponent>;
export { ActionBottomSheetUnControlled };
export { ActionBottomSheetUnControlled as ActionBottomSheet };
