import { Instruction } from 'src/types';
export declare function setInstruction(instruction: Instruction): {
    '@type': string;
    name?: string | undefined;
    text: string;
    url?: string | undefined;
    image?: string | undefined;
} | undefined;
