import { FunctionalComponent } from '../../../stencil-public-runtime';
import { SdxButtonProps } from "../../../utils/types";
interface BulkProps {
    arrowPosition: string | number;
    buttonsProps?: SdxButtonProps[];
    hideCallback: () => void;
    label?: string;
    language: string;
}
declare const Bulk: FunctionalComponent<BulkProps>;
export default Bulk;
