import React from 'react';
export interface DialogActionsProps {
    /**
     * If `true`, the grid layout will use width: 100%.
     */
    fullWidth?: boolean;
    /**
     * If `vertical`, items will be shown side by side, otherside one under the other.
     */
    variant?: 'vertical' | 'horizontal';
    /**
     * The children of the component.
     */
    children: React.ReactNode;
}
