import { ReactNode } from 'react';
export interface InstructionsOutputModel {
    instructions: Array<ReactNode>;
    type?: 'ordered' | 'unordered' | 'simple' | 'custom';
    iconCustom?: ReactNode;
    title?: string;
    children?: ReactNode;
    colorTextCustom?: string;
}
