export declare class NoResults { isError: boolean; isRobotSnippet: boolean; customRobotClass: string; isRobotTopMargin: boolean; robotHeight: string | number; robotWidthPx: string | number; robotWidthPercent: string | number; errorHeightMarginTop: string | number; errorMessage: string; errorFontSize: string | number; customErrorClass: string; constructor({isError, isRobotSnippet, isRobotTopMargin, customRobotClass, robotHeight, robotWidthPx, robotWidthPercent, errorHeightMarginTop, errorMessage, errorFontSize, customErrorClass}: { isError?: boolean; isRobotSnippet?: boolean; customRobotClass?: string; isRobotTopMargin?: boolean; robotHeight?: string | number; robotWidthPx?: string | number; robotWidthPercent?: string | number; errorHeightMarginTop?: string | number; errorMessage?: string; errorFontSize?: string | number; customErrorClass?: string; }); }