import { Form } from '../../../composables'; import { Idea, IdeaType } from '../../../types'; type IdeaForm = Form; export type SubmittedIdeas = { collection: Idea[]; type: IdeaType | undefined; submitIdea: (ideaForm: IdeaForm) => Promise; }; export declare function useSubmittedIdeas(type?: IdeaType): SubmittedIdeas; export {};