import React, { ReactElement } from 'react';
import { ViewProps } from 'react-native';
import type { IlayoutButtons } from './utils';
interface LayoutWithBottomButtonsProps extends ViewProps {
    children: ReactElement | string;
    buttons: Array<IlayoutButtons>;
    variant?: string;
    buttonBackgroundColor?: string;
}
declare const LayoutWithBottomButtons: ({ children, buttons, variant, buttonBackgroundColor, ...props }: LayoutWithBottomButtonsProps) => React.JSX.Element | null;
export default LayoutWithBottomButtons;
