/** * Force light appearance in Pika. * * @returns Pika light appearance URL. * @example * light() * // => 'pika://appearance/light' * @link https://github.com/superhighfives/pika/blob/main/Pika/Views/HelpView.swift */ export declare function light(): string; /** * Force dark appearance in Pika. * * @returns Pika dark appearance URL. * @example * dark() * // => 'pika://appearance/dark' * @link https://github.com/superhighfives/pika/blob/main/Pika/Views/HelpView.swift */ export declare function dark(): string; /** * Restore system appearance in Pika. * * @returns Pika system appearance URL. * @example * system() * // => 'pika://appearance/system' * @link https://github.com/superhighfives/pika/blob/main/Pika/Views/HelpView.swift */ export declare function system(): string;