import { SetRoundnessParams, SetSizeParams, SetSpacingParams } from '../schemas.js'; export declare function handleSetSize(params: SetSizeParams): Promise<{ content: { type: "text"; text: string; }[]; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; export declare function handleSetSpacing(params: SetSpacingParams): Promise<{ content: { type: "text"; text: string; }[]; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; export declare function handleSetRoundness(params: SetRoundnessParams): Promise<{ content: { type: "text"; text: string; }[]; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>;