import React from 'react'; import { IndentType } from '../../utils'; import { DraftButtonProps } from '../DraftButton/DraftButton'; export interface IndentDraftButtonProps extends Omit { /** * The value to associate with the button */ value: IndentType; /** * If `true`, indentation will only be performed on nested list. * @default false */ nestedListOnly?: boolean; } export declare enum IndentCommand { Increase = "increase-indent", Decrease = "decrease-indent" } declare const IndentDraftButton: React.ForwardRefExoticComponent & React.RefAttributes>; export default IndentDraftButton;